home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 July / PCWorld_2000-07_cd.bin / Software / Vyzkuste / scriptw / _SETUP.1 / Pascal and Delphi Template.pas < prev    next >
Pascal/Delphi Source File  |  2000-02-11  |  541b  |  29 lines

  1. { This is a Pascal/Delphi example for a new VCL component }
  2.  
  3. unit UnitName;
  4.  
  5. interface
  6.  
  7. uses
  8.      // Update to your own version of Delphi, for example Delphi 3:
  9.      // Windows, Messages, SysUtils, Classes, Graphics, Controls,
  10.      // Forms, Dialogs;
  11.  
  12. type
  13.      TClass = class(TDescendedFrom)
  14.      private
  15.      { Private-Declarations }
  16.      public
  17.      { Public-Declarations }
  18.  
  19. procedure Register;
  20.  
  21. implementation
  22.  
  23. procedure Register;
  24. begin
  25.   RegisterComponents('PageName', [TComponent1,TComponent2]);
  26. end;
  27.  
  28. end.
  29.